home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / ctoolwrk.lbr / GETIT.C < prev    next >
Text File  |  1985-09-27  |  256b  |  20 lines

  1. /* this is a program to get characters from keyboard */
  2. /* and print them on the screen                      */
  3.  
  4. #include a:printf.c
  5.  
  6. char x;
  7.  
  8. main()
  9.  
  10. {
  11.    {
  12.      getchar();
  13.    }
  14.  
  15.         {
  16.           printf("%s",x);
  17.         }
  18.  
  19. }
  20.